net/http.http2gzipReader.zr (field)

9 uses

	net/http (current package)
		h2_bundle.go#L10438: 	zr   *gzip.Reader  // stores gzip reader from the pool between reads
		h2_bundle.go#L10477: 	if gz.zr == nil {
		h2_bundle.go#L10478: 		gz.zr, gz.zerr = http2gzipPoolGet(gz.body)
		h2_bundle.go#L10483: 	ret := gz.zr
		h2_bundle.go#L10484: 	gz.zr, gz.zerr = nil, http2errConcurrentReadOnResBody
		h2_bundle.go#L10493: 		gz.zr, gz.zerr = zr, nil
		h2_bundle.go#L10504: 	if gz.zerr == nil && gz.zr != nil {
		h2_bundle.go#L10505: 		http2gzipPoolPut(gz.zr)
		h2_bundle.go#L10506: 		gz.zr = nil